PointUpdated Event

       

Occurs when a data point has changed.

Syntax

Private Sub object_PointUpdated (series As Integer, dataPoint As Integer, updateFlags As Integer)

The PointUpdated event syntax has these parts:

Part Description
object An object expression that evaluates to an object in the Applies To list.
series Integer. Identifies the series containing the data point. Series are numbered in the order that their columns appear in the data grid, beginning with 1.
dataPoint Integer. Identifies the data point's position in the series. Points are numbered in the order that their rows appear in the data grid, beginning with 1.
updateFlags Integer. Provides information about the update of the data point, as described in Settings.

Settings

The following table lists the constants for updateFlags.

Constant Description
VtChNoDisplay Absence of update flags; the chart display is not affected. (Defined as 0.)
VtChDisplayPlot Update will cause the plot to repaint.
VtChLayoutPlot Update will cause the plot to lay out.
VtChDisplayLegend Update will cause the legend to repaint.
VtChLayoutLegend Update will cause the legend to lay out.
VtChLayoutSeries Update will cause the series to lay out.
VtChPositionSection A chart section has been moved or resized.